home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / FSetTest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  482 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        FSetTest.h
  3.  
  4.     Contains:    Declarations for the function set test
  5.  
  6.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __FSETTEST__
  11. #define __FSETTEST__
  12.  
  13. #define kFSetTest1ID        "appl:ftst$Add,1.2"
  14. #define kFSetTest2ID        "appl:ftst$Sub,1.2"
  15. #define kFSetParentID        "appl:ftst$Math,1.2"
  16.  
  17. #define kFunctionName    "MathFunction"
  18.  
  19. #ifdef __SC__
  20.     typedef int    (*_cdecl TestFunction)(int, int);
  21. #else
  22.     typedef int    (* TestFunction)(int, int);
  23. #endif
  24.  
  25. #endif
  26.